home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 43.zip / CU Amiga 36.adf / scriptfile < prev    next >
Text File  |  1978-01-27  |  1KB  |  42 lines

  1. resident c:resident pure add
  2. resident c:echo pure add
  3. resident c:if pure add
  4. resident c:else pure add
  5. resident c:else pure add
  6. resident c:endcli pure add
  7. resident c:wait pure add
  8. echo "This script will copy more drivers onto last months coverdisk"
  9. echo "but in order to make room for them it will delete the F-15 "
  10. echo "animations and Aminfo. Please press Ctrl & C if you want to halt"
  11. echo " this script here"
  12. echo ""
  13. echo "REMEMBER TO RENAME YOUR GBROUTE COVERDISK 'CU34' "
  14. echo "BEFORE RUNNING THIS SCRIPT"
  15. wait 7
  16. IF WARN
  17.     Endcli
  18. ELSE
  19. resident c:copy pure add
  20. resident c:delete pure add
  21. resident c:cd pure add
  22. resident c:makedir pure add
  23. Copy cu36:devs/printer.device ram:
  24. Copy cu36:devs/parallel.device ram:
  25. makedir ram:printers
  26. copy cu36:devs/printers/#? ram:printers/
  27. Delete cu34:f15#?
  28. delete cu34:Aminfo#?
  29. copy ram:parallel.device cu34:devs
  30. copy ram:printers/#? cu34:devs/printers
  31. echo "You may have to install your preferences onto this disk"
  32. echo "Do this by using COPYPREFS from the Prefs directory of your"
  33. echo "Workbench disk or by entering the shell and typing the following:"
  34. echo ""
  35. echo " copy devs:system-configuration CU34:devs"
  36. echo ""
  37. echo "now attempting to copy the drivers"
  38. echo " script finished"
  39. ENDIF
  40. wait 7
  41. endcli
  42.